Version

UltraCalcFunctionDescriptor Constructor(String,Int32,Int32,Type,String,String,String[],String[],Boolean,Boolean)

Formula function decriptor providing methods and properties to define and access functions.
Syntax
'Declaration
 
Public Function New( _
   ByVal name As String, _
   ByVal minArgs As Integer, _
   ByVal maxArgs As Integer, _
   ByVal type As Type, _
   ByVal category As String, _
   ByVal description As String, _
   ByVal argList() As String, _
   ByVal argDescriptors() As String, _
   ByVal udf As Boolean, _
   ByVal alwaysDirty As Boolean _
)
public UltraCalcFunctionDescriptor( 
   string name,
   int minArgs,
   int maxArgs,
   Type type,
   string category,
   string description,
   string[] argList,
   string[] argDescriptors,
   bool udf,
   bool alwaysDirty
)

Parameters

name
Function Name
minArgs
Minimum number of arguments
maxArgs
Maximum number of arguments
type
System.Type of function
category
Function category
description
Function description
argList
Function argument list identifiers
argDescriptors
Function argument list descriptors
udf
True if this is a user-defined function - otherwise false.
alwaysDirty
Indicates if the functions value is always dirty
Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also